From 9db37ab530b4eec239dc96dfa4734987e437104d Mon Sep 17 00:00:00 2001 From: oliskoli Date: Tue, 3 Jun 2008 16:27:52 +0000 Subject: [PATCH] ik3d: Fix errors when compiling without expat. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@3250 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/ik3d.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gpsbabel/ik3d.c b/gpsbabel/ik3d.c index 8685886d4..9a5c50c45 100644 --- a/gpsbabel/ik3d.c +++ b/gpsbabel/ik3d.c @@ -30,6 +30,8 @@ static arglist_t ikt_args[] = #define MYNAME "ikt" +static char *name, *text; + #if ! HAVE_LIBEXPAT void ikt_rd_init(const char *fname) @@ -42,11 +44,15 @@ ikt_read(void) { } +static void +ikt_object_end(void) +{ +} + #else static route_head *track; static waypoint *waypt; -static char *name, *text; static xg_callback iktobj_waypt, iktobj_type, iktobj_name, iktobj_trkpt, iktobj_text; -- 2.30.2